home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / p / pov / povlisti.ngs / big_e.pov < prev    next >
Encoding:
Text File  |  1993-05-04  |  1.5 KB  |  108 lines

  1. //
  2. // BIG_E.POV
  3. //
  4. // Written by Ville Saari
  5. //
  6. // Created: 25-Sep-92
  7. // Updated: 22-Jan-93
  8. //
  9. // PoV-Ray scene description for the starship U.S.S Enterprise
  10. // NCC-1701-A
  11. //
  12.  
  13.  
  14.  
  15. //
  16. // Get the definition for the starship
  17. //
  18.  
  19. include "big_e.inc"
  20.  
  21.  
  22.  
  23. //
  24. // Very distant light source
  25. //
  26.  
  27. object { light_source { <-10000000 -100000 -5000000> colour White } }
  28.  
  29.  
  30.  
  31. //
  32. // A planet from planet.pov
  33. //
  34.  
  35. composite
  36.    {
  37.    object
  38.       {
  39.       sphere { <0 0 0> 3000000 }
  40.  
  41.       texture
  42.          {
  43.          0.08
  44.  
  45.          bozo
  46.  
  47.          color_map
  48.             {
  49.             [0   0.7  color MediumBlue  color MediumBlue ]
  50.             [0.7 1    color ForestGreen color Bronze2    ]
  51.             [1.0 1.01 color Bronze2     color Brown      ]
  52.             }
  53.  
  54.          turbulence 0.5
  55.  
  56.          scale <700000 700000 700000>
  57.          translate <0 5000000 0>
  58.          }
  59.       }
  60.  
  61.    object
  62.       {
  63.       sphere { <0 0 0> 3005000 }
  64.  
  65.       texture
  66.          {
  67.          bozo
  68.  
  69.          color_map
  70.             {
  71.             [0   0.4 color Clear color Clear ]
  72.             [0.4 0.9 color Clear color White ]
  73.             [0.9 1   color White color White ]
  74.             }
  75.  
  76.          turbulence 1
  77.  
  78.          scale <240000 60000 240000>
  79.          }
  80.       }
  81.  
  82.    translate <0 0 -5700000>
  83.    rotate <0 -40 -30>
  84.    }
  85.  
  86.  
  87.  
  88. //
  89. // The observer
  90. //
  91.  
  92. camera
  93.    {
  94.    location <-400 -160 1600>
  95.    direction <0 0 12.1>
  96.    sky <-7 90 0>
  97.    look_at <12 -15 0>
  98.    }
  99.  
  100.  
  101.  
  102. //
  103. // And the starship
  104. //
  105.  
  106. composite { NCC_1701_A }
  107.  
  108.